Skip to main content

JS

The JS SDK for In-App Notifications provides a set of class methods to fetch and manipulate notifications

Installation

npm install @sirenapp/js-sdk

Usage

Initialize the SDK by creating a class instance as follows

import Siren from "@sirenapp/js-sdk"

const sirenInstance = new Siren({
token: "your-user-token",
recipientId: "your-recipient-id",
onError: (error) => {
// error callback function
},
actionCallbacks:{
onEventReceive: (response: NotificationsApiResponse, eventType: 'NOTIFICATIONS'| 'UNVIEWED_COUNT') => {};
onStatusChange: (status: 'SUCCESS' | 'FAILED' | 'PENDING') =>{};
}
});

All the exposed methods can be accessed using sirenInstance object. For example,to fetch all notifications,

const response = await sirenInstance.fetchAllNotifications({ page: 0, size: 10 });

Siren constructor accepts the following arguments

PropertyDescriptionTypeOptional
tokenUser tokenstringfalse
recipientIdRecipient idstringfalse
onErrorTo receive error call backs when there is any error.
Returns an error object of type,
{ Type: "ERROR",
Message: "description of the error",
Code: "error code specified in the error codes table" }
functionfalse
actionCallbacksAn object used to specify the callbacks triggered upon fetching the notifications or the unviewed count dynamicallyobjecttrue

Action callback keys

onEventReceive

This callback function is intended to handle data reception, which may come in two forms: either new notifications or the count of unviewed notifications. The function expects two parameters: response, which can be either of type NotificationsApiResponse or UnviewedCountResponse, and eventType, a string that can take values 'NOTIFICATIONS' or 'UNVIEWED_COUNT'

interface Notifications = {
id: string;
createdAt?: string;
message: {
channel: string;
header: string;
subHeader: string;
body: string;
actionUrl: string;
avatar: {
imageUrl: string;
actionUrl: string | null;
}
additionalData: string;
}
requestId: string;
isRead: boolean;
sequenceNumber: number
}[]
interface UnviewedCount = {
id: string;
createdAt: string;
updatedAt: string;
deletedAt: string | null;
createdBy: string;
updatedBy: string;
deletedBy: string | null;
projectEnvironmentId: string;
referenceId: string;
providerIntegrationId: string;
lastOpenedAt: string;
totalUnviewed: number;
}

onStatusChange

Callback function to receive the verification status of recipient id and user toke, with status as an argument to the callback. Access to the methods will only be granted following successful verification.

enum VerificationStatus {
PENDING = "PENDING",
SUCCESS = "SUCCESS",
FAILED = "FAILED",
}

Siren Methods

1. verifyToken

This method verifies the validity of the given tokens (recipientId and userToken).This method is called automatically while creating the instance . Once the verification is successful, the remaining exposed methods can be accessed.

await sirenInstance.verifyToken();

2. fetchUnviewedNotificationsCount

This method retrieves the count of unviewed notifications.

const { unviewedCount } = await sirenInstance.fetchUnviewedNotificationsCount();

3. fetchAllNotifications

This method retrieves list of notifications in a paginated manner.

const notifications = await sirenInstance.fetchAllNotifications({ page: 0, size: 15, sequenceNumber:start: 0, sequenceNumber:end: 0, isRead: false });
ArgumentDescriptionTypeOptionalDefault
pageCurrent pagenumbertrue0
sizeNumber of items fetchednumbertrue10
sequenceNumber:startAccepts a sequence number and retrieves notifications with sequence numbers greater than or equal to the given number. By default, only the first 20 notifications will be fetchednumbertruenull
sequenceNumber:endAccepts a sequence number and retrieves notifications with sequence numbers less than the given number. By default, only the first 20 notifications will be fetchednumbertruenull
isReadFilter to fetch read or unread notifications. If not specified, it retrieves both read and unread notificationsbooleantruenull

Response

 interface Notifications = {
id: string;
createdAt?: string;
message: {
channel: string;
header: string;
subHeader: string;
body: string;
actionUrl: string;
avatar: {
imageUrl: string;
actionUrl: string | null;
}
additionalData: string;
}
requestId: string;
isRead: boolean;
sequenceNumber: number
}[]

4. startRealTimeFetch

By specifying the parameter eventType as either NOTIFICATIONS or UNVIEWED_COUNT, this method triggers the real-time retrieval of notifications or the count of unviewed notifications. If NOTIFICATIONS is selected, further parameters (params) can be provided for additional customization or filtering

sirenInstance.startRealTimeFetch({
eventType: NOTIFICATIONS,
params: { page: 0, size: 15, start: '', end: '', isRead: false }
});

sirenInstance.startRealTimeFetch({ eventType: UNVIEWED_COUNT });

The notifications received can be subscribed using the onEventReceive actionCallback. The parameters for the params object are as follows:

ArgumentDescriptionTypeOptionalDefault
pageRepresents the current pagenumbertrue0
sizeRepresents the number of items to be fetched in a single callnumbertrue10
sequenceNumber:startAccepts a sequence number and retrieves notifications with sequence numbers greater than or equal to the given number. By default, only the first 20 notifications will be fetchednumbertruenull
sequenceNumber:endAccepts a sequence number and retrieves notifications with sequence numbers less than the given number. By default, only the first 20 notifications will be fetchednumbertruenull
isReadFilter to fetch read or unread notifications. If not specified, it retrieves both read and unread notificationsbooleantruenull

5. stopRealTimeFetch

By specifying the parameter eventType as either NOTIFICATIONS or UNVIEWED_COUNT, this method stops the real-time retrieval of notifications or the count of unviewed notifications.

sirenInstance.stopRealTimeFetch(NOTIFICATIONS);


sirenInstance.stopRealTimeFetch(UNVIEWED_COUNT);

6. markAsReadById

This method marks the notification as read. It accepts a notification id as an argument.

await sirenInstance.markAsReadById('your-notification-id');

7. markAsReadByDate

This method marks the notifications as read till the given date.
It accepts an ISO date string as an argument.

await sirenInstance.markAsReadByDate('2011-10-05T14:48:00.000Z');

8. deleteById

This method deletes a notification. It accepts a notification id as an argument.

await sirenInstance.deleteById('your-notification-id');

9. deleteByDate

This method deletes the notifications till the given date.
It accepts an ISO date string as an argument

await sirenInstance.deleteByDate('2011-10-05T14:48:00.000Z');

10. markAllAsViewed

This method marks the notifications as viewed till the given date. This sets the unviewed count as 0
It accepts an ISO date string as an argument

await sirenInstance.markAllAsViewed('2011-10-05T14:48:00.000Z');

Error codes

Given below are the possible error codes thrown by sdk

Error codeDescription
INVALID_CREDENTIALSThe credentials provided are not valid
AUTHENTICATION_FAILEDFailed to authenticate given credentials
UNAUTHORIZED_OPERATIONAttempting to invoke methods using invalid credentials
INVALID_ERROR_FUNCTIONThe provided error function is invalid
AUTHENTICATION_PENDINGToken verification is in progress
INVALID_CALLBACK_FUNCTIONThe callback function provided within actionCallbacks is not valid
MISSING_PARAMETERThe required parameter is missing
NOTIFICATION_FETCH_FAILEDFailed to fetch notifications
UNVIEWED_COUNT_FETCH_FAILEDFailed to fetch unviewed notifications count
MARK_AS_READ_FAILEDFailed to mark notification as read
DELETE_FAILEDFailed to delete notification
MARK_ALL_AS_VIEWED_FAILEDFailed to mark notification as viewed
BULK_DELETE_FAILEDBulk deletion of notifications failed
MARK_ALL_AS_READ_FAILEDFailed to mark all notifications as read

Example

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<script src="https://siren-js.sirenapp.io/siren-js-umd-sdk.js"></script>
</head>

<body>
<div class="container">
<h1>CDN Client</h1>
<div class="wrapper">
<button class="button" onclick="getUnviewedCount()">FETCH UNVIEWED COUNT</button>
<button class="button" onclick="getAllNotifications()">FETCH ALL NOTIFICATIONS</button>
<button class="button" onclick="markAsViewed()">MARK AS VIEWED</button>
</div>
<div class="wrapper">
<button class="button" onclick="markAsReadById()">MARK AS READ BY ID</button>
<button class="button" onclick="markAllAsRead()">MARK ALL AS READ</button>
</div>
<div class="wrapper">
<button class="button" onclick="deleteById()">DELETE BY ID</button>
<button class="button" onclick="clearAll()">CLEAR ALL</button>
</div>
<div class="wrapper">
<button class="button" onclick="startNotificationsRealTimeFetch()">START REAL TIME NOTIFICATION FETCH</button>
<button class="button" onclick="stopNotificationsRealTimeFetch()">STOP REAL TIME NOTIFICATION FETCH</button>
</div>
<div class="wrapper">
<button class="button" onclick="startUnviewedCountRealTimeFetch()">START REAL TIME COUNT FETCH</button>
<button class="button" onclick="stopUnviewedCountRealTimeFetch()">STOP REAL TIME COUNT FETCH</button>
</div>
</div>
</body>
<script>
var sirenWeb;

const recipientToken = 'YOUR_RECIPIENT_TOKEN';
const recipientID = 'YOUR_RECIPIENT_ID';
const notificationId = 'NOTIFICATION_ID';

if (Siren) {
sirenWeb = new Siren({
token: recipientToken,
recipientId: recipientID,
onError: (error) => {
console.log('Error callback:', error);
},
actionCallbacks: {
onEventReceive: (response, eventType) => {
if(eventType === 'NOTIFICATIONS' && response.data.length > 0)
document.getElementById("output").innerHTML = 'New Notifications ' + JSON.stringify(response, null, 2);
else if(eventType === 'UNVIEWED_COUNT' && response.data)
document.getElementById("output").innerHTML = 'Latest unviewed count ' + JSON.stringify(response, null, 2);
}
}});
}
function startNotificationsRealTimeFetch() {
sirenWeb.startRealTimeFetch({eventType: 'NOTIFICATIONS', params: { page: 0, size: 10 }});
}
function stopNotificationsRealTimeFetch() {
sirenWeb.stopRealTimeFetch('NOTIFICATIONS');
}
async function markAsReadById() {
const res = await sirenWeb.markAsReadById(notificationId);
}
async function markAllAsRead() {
const res= await sirenWeb.markAsReadByDate(new Date().toISOString());
}
async function deleteById() {
const res= await sirenWeb.deleteById(notificationId);
}
async function clearAll() {
const res = await sirenWeb.deleteByDate(new Date().toISOString());
}
async function markAsViewed() {
const res = await sirenWeb.markAllAsViewed(new Date().toISOString());
}
</script>

</html>